home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _A4E107B77DCF4180985ADB27E4288E90 < prev    next >
Encoding:
Text File  |  2004-05-12  |  471 b   |  27 lines

  1. shader()
  2. {
  3.     cull("none")
  4.     sortweight("sprite")
  5.  
  6.     pass()
  7.     {
  8.         vertexshader("RadialBlur.vsh")
  9.         pixelshader("RadialBlur.psh")
  10.  
  11.         tmu()
  12.         {
  13.             texture()
  14.             {
  15.                 mapchannel(0)
  16.                 usermap(0)
  17.  
  18.                 addressfunc("clamp", "clamp", "clamp")
  19.                 filtering("linear_no_mip")
  20.             }
  21.         }
  22.         depthfunc("always", 0)
  23.         nofog()
  24.     }
  25. }
  26.  
  27.